- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using Unity.Plastic.Newtonsoft.Json;
- namespace Unity.PlasticSCM.Editor.WebApi
- {
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- public class SubscriptionDetailsResponse
- {
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- [JsonProperty("createdAt")]
- public DateTime CreatedAt { get; set; }
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- [JsonProperty("subscriptionType")]
- public string ProductType { get; set; }
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- [JsonProperty("subscriptionSource")]
- public string OrderSource { get; set; }
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- [JsonProperty("genesisOrgId")]
- public string GenesisOrgId { get; set; }
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- [JsonProperty("plasticOrganizationName")]
- public string OrganizationName { get; set; }
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- [JsonProperty("readonlyStatus")]
- public string ReadonlyStatus { get; set; }
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- [JsonProperty("isAdmin")]
- public bool IsAdmin { get; set; }
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- [JsonProperty("isOwner")]
- public bool IsOwner { get; set; }
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- [JsonProperty("extraData")]
- public Dictionary<string, object> ExtraData { get; set; }
- }
- }